﻿<html>
<head>
    <meta charset="UTF-8">
    <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
    <script src="js/scripts.min.js"></script>
    <script>
        var leftSeconds =3;//倒计时时间10秒
        var intervalId;
        $(function () {

            intervalId = setInterval("CountDown()", 1000);//调用倒计时的方法
        });
        function CountDown() {//倒计时方法
            if (leftSeconds <= 0) {
                window.location.href = "https://www.zyjm.com/";
                clearInterval(intervalId); //取消由 setInterval() 设置的 timeout
                return;
            }
            leftSeconds--;
            $("#err_span").text("" + leftSeconds + "秒，跳转到首页~");
        }
    </script>
    <style>

        body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            color: #B0BEC5;
            display: table;
            font-weight: 100;
            font-family: 'Lato';
        }

        .container {
            text-align: center;
            display: table-cell;
            vertical-align: middle;
        }

        .content {
            text-align: center;
            display: inline-block;
        }

        .title {
            font-size: 42px;
            margin-bottom: 40px;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="content">
            <div class="title">404 很抱歉，您查看的页面找不到了！</div>
            <span style="font-size:28px; color:#B0BEC5" id="err_span"></span>
        </div>

    </div>
</body>
</html>
